home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mtools.postinst < prev    next >
Text File  |  2009-04-29  |  483b  |  27 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure)
  7.     install-info --section "General commands" "General commands" --quiet /usr/share/info/mtools.info.gz
  8.     ;;
  9.  
  10.     abort-upgrade|abort-remove|abort-deconfigure)
  11.     ;;
  12.  
  13.     *)
  14.         echo "postinst called with unknown argument \`$1'" >&2
  15.         exit 1
  16.     ;;
  17. esac
  18.  
  19. # Automatically added by dh_installinfo
  20. if [ "$1" = "configure" ]; then
  21.     install-info --quiet /usr/share/info/mtools.info
  22. fi
  23. # End automatically added section
  24.  
  25.  
  26. exit 0
  27.